body {
    background: linear-gradient(333deg, #000000, #000020f2, #000000);
}

main {
    padding-top: 100px;
    padding-inline: 40px;
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding-bottom: 30px;
    position: relative;
}

main::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255), transparent);
}

main h1 {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 50px;
}

main h3 {
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    word-spacing: 3px;
    font-size: 25px;
}

main p {
    color: white;
}

.ready {
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 20px;
    position: relative;
    text-transform: uppercase;
}

.ready h1 {
    font-weight: 500;
}

.get {
    padding: 5px 20px;
    border: 1px solid rgba(255, 255, 255, 0.212);
    color: white;
    font-weight: 500;
    background: linear-gradient(135deg, orangered, rgb(83, 1, 14));
    border-radius: 5px;
    font-size: 18px;
    transition: .3s ease;
}

.get a {
    text-decoration: none;
    color: white;
}

.get:hover {
    box-shadow: 0px 0px 20px orangered;
    transform: translateY(-3px);
}

.ready::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255), transparent);
}

footer {
    background: none;
}

@media(max-width:550px) {
    main h1 {
        font-size: 35px;
    }

    .ready h1 {
        font-size: 15px;
    }
}